home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- rem Part of the Virus scanner suite of scripts
- rem Installer batch file v 1.0 Fri 07/22/94
- rem Mark Hazen mhazen@hestia.fcs.uga.edu
- rem Checks for installation of 4DOS, takes appropriate action
- rem If found or not
-
- if %@eval[2+2]==4 goto contin
- 4dos /E:2048 /C install.btm
- if errorlevel==0 goto end
-
- cls
- echo.
- echo 4DOS was not found on your path. You need 4DOS to install
- echo these scripts.
- echo.
- echo If you do not have 4DOS, you can acquire the latest version at any
- echo of the SimTel archive mirrors, such as oak.oakland.edu, ftp.cdrom.com,
- echo or wuarchive.wustl.edu.
- echo.
- echo Exiting....
- echo.
- goto end
- if not errorlevel==0 echo There was a problem. Was install.btm in the same directory?
- :contin
- if %_4ver LT 5.0 echo.
- if %_4ver LT 5.0 echo You need a more recent version of 4DOS. Version 5.0+ is
- if %_4ver LT 5.0 echo required, and you are running version %_4ver.
- if %_4ver LT 5.0 echo .
- if %_4ver LT 5.0 goto end
- call install.btm
- :end
-
-